.scaleEffect modifier lets you increase or decrease the size of a View.
Syntax
.scaleEffect(5) //The same scaling in both directions
.scaleEffect(x: 1, y: 5) //Different scaling in each direction
.scaleEffect(2, anchor: .bottomTrailing) //Specifiy from where to do scaling
.scaleEffect(isPressed ? 0.5 : 1.0)